home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
misc
/
identify
/
identify_dev
/
arexx
/
functionname.ify
< prev
next >
Wrap
Text File
|
1999-05-14
|
763b
|
28 lines
/*****************************************************************
** **
** functionname.ify rexxidentify.library demonstration **
** **
******************************************************************
**
** (c) 1997 by Richard Körber -- All Rights Reserved
**
** You may use this example freely for your own programs.
**
*/
/* Add the library functions */
CALL AddLib("/libs/rexxidentify.library",0,-30,0)
SAY "Enter library/device/resource name (e.g. exec.library)"
PULL libname
SAY "Enter function offset (e.g. -456)"
PULL offset
SAY "The function name is '"|| ID_Function(libname,offset) ||"'."
SAY ""
EXIT